Create Fixed Contact
HTML
no title
*{
padding: 0;
margin: 0;
font-family: Montserrat;
background: #f33;
}
.contact-info{
position: absolute;
top: 40%;
z-index: 9999;
left: 0;
}
.option{
cursor: pointer;
position: relative;
}
.option i{
display: block;
width: 60px;
height: 60px;
text-align: center;
line-height: 60px;
background: #fff;
color: #000;
font-size: 20px;
transition: .6s;
}
.option:hover i{
color: #4834d4;
}
.text{
position: absolute;
height: 60px;
width: 200px;
background: #011;
top: 0;
z-index: -1;
left: -180px;
line-height: 60px;
text-align: center;
transition: .6s;
color: #fff;
}
.option:hover .text{
left: 60px !important;
}